golang.org/x/net/http2.ClientConn.pings (field)

6 uses

	golang.org/x/net/http2 (current package)
		transport.go#L322: 	pings           map[[8]byte]chan struct{} // in flight ping data to notification channel
		transport.go#L747: 		pings:                 make(map[[8]byte]chan struct{}),
		transport.go#L2900: 		if _, found := cc.pings[p]; !found {
		transport.go#L2901: 			cc.pings[p] = c
		transport.go#L2939: 		if c, ok := cc.pings[f.Data]; ok {
		transport.go#L2941: 			delete(cc.pings, f.Data)